home *** CD-ROM | disk | FTP | other *** search
-
- /*
- * Adaptor to Mark Podlipec's xanim software
- */
-
- #include "xanim/xanim.h"
- #import "appkit/NXBitmapImageRep.h"
-
- @interface Animation:Object
- {
- NXBitmapImageRep *bitmap;
- }
-
- - initFrom:(const char *)fn;
- - free;
- - (NXBitmapImageRep *)bitmap;
- - (NXBitmapImageRep *)update;
- - getMaxSize:(NXSize *)size;
- - (NXBitmapImageRep *)next;
- - (BOOL) isLast;
-
-
- @end
-